home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_emacs.idb / usr / freeware / info / gnus-9.z / gnus-9
Encoding:
GNU Info File  |  1998-10-28  |  23.5 KB  |  607 lines

  1. This is Info file ../info/gnus, produced by Makeinfo-1.63 from the
  2. input file gnus.texi.
  3.  
  4.    This file documents Gnus, the GNU Emacs newsreader.
  5.  
  6.    Copyright (C) 1995,96 Free Software Foundation, Inc.
  7.  
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.  
  12.    Permission is granted to copy and distribute modified versions of
  13. this manual under the conditions for verbatim copying, provided also
  14. that the entire resulting derived work is distributed under the terms
  15. of a permission notice identical to this one.
  16.  
  17.    Permission is granted to copy and distribute translations of this
  18. manual into another language, under the above conditions for modified
  19. versions.
  20.  
  21. 
  22. File: gnus,  Node: Emacs Lisp,  Prev: Keystrokes,  Up: Emacs for Heathens
  23.  
  24. Emacs Lisp
  25. ----------
  26.  
  27.    Emacs is the King of Editors because it's really a Lisp interpreter.
  28. Each and every key you tap runs some Emacs Lisp code snippet, and since
  29. Emacs Lisp is an interpreted language, that means that you can configure
  30. any key to run any arbitrary code.  You just, like, do it.
  31.  
  32.    Gnus is written in Emacs Lisp, and is run as a bunch of interpreted
  33. functions.  (These are byte-compiled for speed, but it's still
  34. interpreted.)  If you decide that you don't like the way Gnus does
  35. certain things, it's trivial to have it do something a different way.
  36. (Well, at least if you know how to write Lisp code.)  However, that's
  37. beyond the scope of this manual, so we are simply going to talk about
  38. some common constructs that you normally use in your `.emacs' file to
  39. customize Gnus.
  40.  
  41.    If you want to set the variable `gnus-florgbnize' to four (4), you
  42. write the following:
  43.  
  44.      (setq gnus-florgbnize 4)
  45.  
  46.    This function (really "special form") `setq' is the one that can set
  47. a variable to some value.  This is really all you need to know.  Now
  48. you can go and fill your `.emacs' file with lots of these to change how
  49. Gnus works.
  50.  
  51.    If you have put that thing in your `.emacs' file, it will be read
  52. and `eval'ed (which is lisp-ese for "run") the next time you start
  53. Emacs.  If you want to change the variable right away, simply say `C-x
  54. C-e' after the closing parenthesis.  That will `eval' the previous
  55. "form", which here is a simple `setq' statement.
  56.  
  57.    Go ahead--just try it, if you're located at your Emacs.  After you
  58. `C-x C-e', you will see `4' appear in the echo area, which is the
  59. return value of the form you `eval'ed.
  60.  
  61.    Some pitfalls:
  62.  
  63.    If the manual says "set `gnus-read-active-file' to `some'", that
  64. means:
  65.  
  66.      (setq gnus-read-active-file 'some)
  67.  
  68.    On the other hand, if the manual says "set `gnus-nntp-server' to
  69. `nntp.ifi.uio.no'", that means:
  70.  
  71.      (setq gnus-nntp-server "nntp.ifi.uio.no")
  72.  
  73.    So be careful not to mix up strings (the latter) with symbols (the
  74. former).  The manual is unambiguous, but it can be confusing.
  75.  
  76.    \input texinfo
  77.  
  78. 
  79. File: gnus,  Node: Frequently Asked Questions,  Prev: Emacs for Heathens,  Up: Appendices
  80.  
  81. Frequently Asked Questions
  82. ==========================
  83.  
  84.    This is the Gnus Frequently Asked Questions list.  If you have a Web
  85. browser, the official hypertext version is at
  86. `http://www.miranova.com/~steve/gnus-faq.html>', and has probably been
  87. updated since you got this manual.
  88.  
  89. * Menu:
  90.  
  91. * Installation FAQ::      Installation of Gnus.
  92. * Customization FAQ::     Customizing Gnus.
  93. * Reading News FAQ::      News Reading Questions.
  94. * Reading Mail FAQ::      Mail Reading Questions.
  95.  
  96. 
  97. File: gnus,  Node: Installation FAQ,  Next: Customization FAQ,  Up: Frequently Asked Questions
  98.  
  99. Installation
  100. ------------
  101.  
  102.    * Q1.1  What is the latest version of Gnus?
  103.  
  104.      The latest (and greatest) version is 5.0.10.  You might also run
  105.      across something called *September Gnus*.  September Gnus is the
  106.      alpha version of the next major release of Gnus.  It is currently
  107.      not stable enough to run unless you are prepared to debug lisp.
  108.  
  109.    * Q1.2  Where do I get Gnus?
  110.  
  111.      Any of the following locations:
  112.  
  113.         - `ftp://ftp.ifi.uio.no/pub/emacs/gnus/gnus.tar.gz'
  114.  
  115.         - `ftp://ftp.pilgrim.umass.edu/pub/misc/ding/'
  116.  
  117.         - `gopher://gopher.pilgrim.umass.edu/11/pub/misc/ding/'
  118.  
  119.         - `ftp://aphrodite.nectar.cs.cmu.edu/pub/ding-gnus/'
  120.  
  121.         - `ftp://ftp.solace.mh.se:/pub/gnu/elisp/'
  122.  
  123.    * Q1.3  Which version of Emacs do I need?
  124.  
  125.      At least GNU Emacs 19.28, or XEmacs 19.12 is recommended.  GNU
  126.      Emacs 19.25 has been reported to work under certain circumstances,
  127.      but it doesn't *officially* work on it.  19.27 has also been
  128.      reported to work.  Gnus has been reported to work under OS/2 as
  129.      well as Unix.
  130.  
  131.    * Q1.4  Where is timezone.el?
  132.  
  133.      Upgrade to XEmacs 19.13.  In earlier versions of XEmacs this file
  134.      was placed with Gnus 4.1.3, but that has been corrected.
  135.  
  136.    * Q1.5  When I run Gnus on XEmacs 19.13 I get weird error messages.
  137.  
  138.      You're running an old version of Gnus.  Upgrade to at least version
  139.      5.0.4.
  140.  
  141.    * Q1.6  How do I unsubscribe from the Mailing List?
  142.  
  143.      Send an e-mail message to `ding-request@ifi.uio.no' with the magic
  144.      word *unsubscribe* somewhere in it, and you will be removed.
  145.  
  146.      If you are reading the digest version of the list, send an e-mail
  147.      message to
  148.      `ding-rn-digests-d-request@moe.shore.net' with *unsubscribe* as
  149.      the subject and you will be removed.
  150.  
  151.    * Q1.7  How do I run Gnus on both Emacs and XEmacs?
  152.  
  153.      The basic answer is to byte-compile under XEmacs, and then you can
  154.      run under either Emacsen.  There is, however, a potential version
  155.      problem with easymenu.el with Gnu Emacs prior to 19.29.
  156.  
  157.      Per Abrahamsen <abraham@dina.kvl.dk> writes :
  158.      The internal easymenu.el interface changed between 19.28 and 19.29
  159.      in order to make it possible to create byte compiled files that
  160.      can be shared between Gnu Emacs and XEmacs.  The change is upward
  161.      compatible, but not downward compatible.  This gives the following
  162.      compatibility table:
  163.  
  164.           Compiled with:  | Can be used with:
  165.           ----------------+--------------------------------------
  166.           19.28           | 19.28         19.29
  167.           19.29           |               19.29           XEmacs
  168.           XEmacs          |               19.29           XEmacs
  169.  
  170.      If you have Gnu Emacs 19.28 or earlier, or XEmacs 19.12 or
  171.      earlier, get a recent version of auc-menu.el from
  172.      `ftp://ftp.iesd.auc.dk/pub/emacs-lisp/auc-menu.el', and install it
  173.      under the name easymenu.el somewhere early in your load path.
  174.  
  175.    * Q1.8 What resources are available?
  176.  
  177.      There is the newsgroup Gnu.emacs.gnus. Discussion of Gnus 5.x is
  178.      now taking place there. There is also a mailing list, send mail to
  179.      `ding-request@ifi.uio.no' with the magic word *subscribe*
  180.      somewhere in it.
  181.  
  182.      *NOTE:* the traffic on this list is heavy so you may not want to be
  183.      on it (unless you use Gnus as your mailer reader, that is). The
  184.      mailing list is mainly for developers and testers.
  185.  
  186.      Gnus has a home World Wide Web page at
  187.      `http://www.ifi.uio.no/~larsi/ding.html'.
  188.  
  189.      Gnus has a write up in the X Windows Applications FAQ at
  190.      `http://www.ee.ryerson.ca:8080/~elf/xapps/Q-III.html'.
  191.  
  192.      The Gnus manual is also available on the World Wide Web. The
  193.      canonical source is in Norway at
  194.      `http://www.ifi.uio.no/~larsi/ding-manual/gnus_toc.html'.
  195.  
  196.      There are three mirrors in the United States:
  197.        1. `http://www.miranova.com/gnus-man/'
  198.  
  199.        2.
  200.  
  201.  
  202.           `http://www.pilgrim.umass.edu/pub/misc/ding/manual/gnus_toc.html'
  203.  
  204.        3. `http://www.rtd.com/~woo/gnus/'
  205.  
  206.  
  207.      PostScript copies of the Gnus Reference card are available from
  208.      `ftp://ftp.cs.ualberta.ca/pub/oolog/gnus/'.  They are mirrored at
  209.      `ftp://ftp.pilgrim.umass.edu/pub/misc/ding/refcard/' in the United
  210.      States. And
  211.      `ftp://marvin.fkphy.uni-duesseldorf.de/pub/gnus/' in Germany.
  212.  
  213.      An online version of the Gnus FAQ is available at
  214.      `http://www.miranova.com/~steve/gnus-faq.html'. Off-line formats
  215.      are also available:
  216.      ASCII: `ftp://ftp.miranova.com/pub/gnus/gnus-faq'
  217.      PostScript: `ftp://ftp.miranova.com/pub/gnus/gnus-faq.ps'.
  218.  
  219.    * Q1.9  Gnus hangs on connecting to NNTP server
  220.  
  221.      I am running XEmacs on SunOS and Gnus prints a message about
  222.      Connecting to NNTP server and then just hangs.
  223.  
  224.      Ben Wing <wing@netcom.com> writes :
  225.      I wonder if you're hitting the infamous *libresolv* problem.  The
  226.      basic problem is that under SunOS you can compile either with DNS
  227.      or NIS name lookup libraries but not both.  Try substituting the
  228.      IP address and see if that works; if so, you need to download the
  229.      sources and recompile.
  230.  
  231.    * Q1.10  Mailcrypt 3.4 doesn't work
  232.  
  233.      This problem is verified to still exist in Gnus 5.0.9 and
  234.      MailCrypt 3.4.  The answer comes from Peter Arius
  235.      <arius@immd2.informatik.uni-erlangen.de>.
  236.  
  237.      I found out that mailcrypt uses `gnus-eval-in-buffer-window',
  238.      which is a macro.  It seems as if you have compiled mailcrypt with
  239.      plain old GNUS in load path, and the XEmacs byte compiler has
  240.      inserted that macro definition into `mc-toplev.elc'.  The solution
  241.      is to recompile `mc-toplev.el' with Gnus 5 in load-path, and it
  242.      works fine.
  243.  
  244.      Steve Baur <steve@miranova.com> adds :
  245.      The problem also manifests itself if neither GNUS 4 nor Gnus 5 is
  246.      in the load-path.
  247.  
  248.    * Q1.11  What other packages work with Gnus?
  249.  
  250.         - Mailcrypt.
  251.  
  252.           Mailcrypt is an Emacs interface to PGP.  It works, it installs
  253.           without hassle, and integrates very easily.  Mailcrypt can be
  254.           obtained from
  255.           `ftp://cag.lcs.mit.edu/pub/patl/mailcrypt-3.4.tar.gz'.
  256.  
  257.         - Tiny Mime.
  258.  
  259.           Tiny Mime is an Emacs MUA interface to MIME.  Installation is
  260.           a two-step process unlike most other packages, so you should
  261.           be prepared to move the byte-compiled code somewhere.  There
  262.           are currently two versions of this package available.  It can
  263.           be obtained from
  264.           `ftp://ftp.jaist.ac.jp/pub/GNU/elisp/'.  Be sure to apply the
  265.           supplied patch.  It works with Gnus through version 5.0.9.
  266.           In order for all dependencies to work correctly the load
  267.           sequence is as follows:
  268.                  (load "tm-setup")
  269.                  (load "gnus")
  270.                  (load "mime-compose")
  271.  
  272.           *NOTE:* Loading the package disables citation highlighting by
  273.           default.  To get the old behavior back, use the `M-t' command.
  274.  
  275. 
  276. File: gnus,  Node: Customization FAQ,  Next: Reading News FAQ,  Prev: Installation FAQ,  Up: Frequently Asked Questions
  277.  
  278. Customization
  279. -------------
  280.  
  281.    * Q2.1  Custom Edit does not work under XEmacs
  282.  
  283.      The custom package has not been ported to XEmacs.
  284.  
  285.    * Q2.2  How do I quote messages?
  286.  
  287.      I see lots of messages with quoted material in them.  I am
  288.      wondering how to have Gnus do it for me.
  289.  
  290.      This is Gnus, so there are a number of ways of doing this.  You
  291.      can use the built-in commands to do this.  There are the `F' and
  292.      `R' keys from the summary buffer which automatically include the
  293.      article being responded to.  These commands are also selectable as
  294.      Followup and Yank and Reply and Yank in the Post menu.
  295.  
  296.      `C-c C-y' grabs the previous message and prefixes each line with
  297.      `ail-indentation-spaces' spaces or `mail-yank-prefix' if that is
  298.      non-nil, unless you have set your own `mail-citation-hook', which
  299.      will be called to to do the job.
  300.  
  301.      You might also consider the Supercite package, which allows for
  302.      pretty arbitrarily complex quoting styles.  Some people love it,
  303.      some people hate it.
  304.  
  305.    * Q2.3 How can I keep my nnvirtual:* groups sorted?
  306.  
  307.      How can I most efficiently arrange matters so as to keep my
  308.      nnvirtual:* (etc) groups at the top of my group selection buffer,
  309.      whilst keeping everything sorted in alphabetical order.
  310.  
  311.      If you don't subscribe often to new groups then the easiest way is
  312.      to first sort the groups and then manually kill and yank the
  313.      virtuals wherever you want them.
  314.  
  315.    * Q2.4  Any good suggestions on stuff for an all.SCORE file?
  316.  
  317.      Here is a collection of suggestions from the Gnus mailing list.
  318.  
  319.        1. From "Dave Disser" <disser@sdd.hp.com>
  320.           I like blasting anything without lowercase letters.  Weeds
  321.           out most of the make $$ fast, as well as the lame titles like
  322.           "IBM" and "HP-UX" with no further description.
  323.                 (("Subject"
  324.                  ("^\\(Re: \\)?[^a-z]*$" -200 nil R)))
  325.  
  326.        2. From "Peter Arius" <arius@immd2.informatik.uni-erlangen.de>
  327.           The most vital entries in my (still young) all.SCORE:
  328.                (("xref"
  329.                  ("alt.fan.oj-simpson" -1000 nil s))
  330.                 ("subject"
  331.                  ("\\<\\(make\\|fast\\|big\\)\\s-*\\(money\\|cash\\|bucks?\\)\\>" -1000 nil r)
  332.                  ("$$$$" -1000 nil s)))
  333.  
  334.        3. From "Per Abrahamsen" <abraham@dina.kvl.dk>
  335.                (("subject"
  336.                  ;; CAPS OF THE WORLD, UNITE
  337.                  ("^..[^a-z]+$" -1 nil R)
  338.                  ;; $$$ Make Money $$$ (Try work)
  339.                  ("$" -1 nil s)
  340.                  ;; I'm important! And I have exclamation marks to prove it!
  341.                  ("!" -1 nil s)))
  342.  
  343.        4. From "heddy boubaker" <boubaker@cenatls.cena.dgac.fr>
  344.           I  would like to contribute with mine.
  345.                (
  346.                 (read-only t)
  347.                 ("subject"
  348.                  ;; ALL CAPS SUBJECTS
  349.                  ("^\\([Rr][Ee]: +\\)?[^a-z]+$" -1 nil R)
  350.                  ;; $$$ Make Money $$$
  351.                  ("$$" -10 nil s)
  352.                  ;; Empty subjects are worthless!
  353.                  ("^ *\\([(<]none[>)]\\|(no subject\\( given\\)?)\\)? *$" -10 nil r)
  354.                  ;; Sometimes interesting announces occur!
  355.                  ("ANN?OU?NC\\(E\\|ING\\)" +10 nil r)
  356.                  ;; Some people think they're on mailing lists
  357.                  ("\\(un\\)?sub?scribe" -100 nil r)
  358.                  ;; Stop Micro$oft NOW!!
  359.                  ("\\(m\\(icro\\)?[s$]\\(oft\\|lot\\)?-?\\)?wind?\\(ows\\|aube\\|oze\\)?[- ]*\\('?95\\|NT\\|3[.]1\\|32\\)" -1001 nil r)
  360.                  ;; I've nothing to buy
  361.                  ("\\(for\\|4\\)[- ]*sale" -100 nil r)
  362.                  ;; SELF-DISCIPLINED people
  363.                  ("\\[[^a-z0-9 \t\n][^a-z0-9 \t\n]\\]" +100 nil r)
  364.                  )
  365.                 ("from"
  366.                  ;; To keep track of posters from my site
  367.                  (".dgac.fr" +1000 nil s))
  368.                 ("followup"
  369.                  ;; Keep track of answers to my posts
  370.                  ("boubaker" +1000 nil s))
  371.                 ("lines"
  372.                  ;; Some people have really nothing to say!!
  373.                  (1 -10 nil <=))
  374.                 (mark -100)
  375.                 (expunge -1000)
  376.                 )
  377.  
  378.        5. From "Christopher Jones" <cjones@au.oracle.com>
  379.           The sample `all.SCORE' files from Per and boubaker could be
  380.           augmented with:
  381.                    (("subject"
  382.                      ;; No junk mail please!
  383.                      ("please ignore" -500 nil s)
  384.                      ("test" -500 nil e))
  385.                    )
  386.  
  387.        6. From "Brian Edmonds" <edmonds@cs.ubc.ca>
  388.           Augment any of the above with a fast method of scoring down
  389.           excessively cross posted articles.
  390.                 ("xref"
  391.                  ;; the more cross posting, the exponentially worse the article
  392.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+" -1 nil r)
  393.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -2 nil r)
  394.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -4 nil r)
  395.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -8 nil r)
  396.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -16 nil r)
  397.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -32 nil r)
  398.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -64 nil r)
  399.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -128 nil r)
  400.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -256 nil r)
  401.                  ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -512 nil r))
  402.  
  403.  
  404.    * Q2.5  What do I use to yank-through when replying?
  405.  
  406.      You should probably reply and followup with `R' and `F', instead
  407.      of `r' and `f', which solves your problem.  But you could try
  408.      something like:
  409.  
  410.           (defconst mail-yank-ignored-headers
  411.             "^.*:"
  412.             "Delete these headers from old message when it's inserted in a reply.")
  413.  
  414.    * Q2.6  I don't like the default WWW browser
  415.  
  416.      Now when choosing an URL Gnus starts up a W3 buffer, I would like
  417.      it to always use Netscape (I don't browse in text-mode ;-).
  418.  
  419.        1. Activate `Customize...' from the `Help' menu.
  420.  
  421.        2. Scroll down to the `WWW Browser' field.
  422.  
  423.        3. Click `mouse-2' on `WWW Browser'.
  424.  
  425.        4. Select `Netscape' from the pop up menu.
  426.  
  427.        5. Press `C-c C-c'
  428.  
  429.  
  430.      If you are using XEmacs then to specify Netscape do
  431.             (setq gnus-button-url 'gnus-netscape-open-url)
  432.  
  433.    * Q2.7 What, if any, relation is between "ask-server" and "(setq
  434.      gnus-read-active-file 'some)"?
  435.  
  436.      In order for Gnus to show you the complete list of newsgroups, it
  437.      will either have to either store the list locally, or ask the
  438.      server to transmit the list. You enable the first with
  439.  
  440.                   (setq gnus-save-killed-list t)
  441.  
  442.      and the second with
  443.  
  444.                   (setq gnus-read-active-file t)
  445.  
  446.      If both are disabled, Gnus will not know what newsgroups exists.
  447.      There is no option to get the list by casting a spell.
  448.  
  449.    * Q2.8  Moving between groups is slow.
  450.  
  451.      Per Abrahamsen <abraham@dina.kvl.dk> writes:
  452.      Do you call `define-key' or something like that in one of the
  453.      summary mode hooks?  This would force Emacs to recalculate the
  454.      keyboard shortcuts.  Removing the call should speed up `M-x
  455.      gnus-summary-mode RET' by a couple of orders of magnitude.  You
  456.      can use
  457.  
  458.           (define-key gnus-summary-mode-map KEY COMMAND)
  459.  
  460.      in your `.gnus' instead.
  461.  
  462. 
  463. File: gnus,  Node: Reading News FAQ,  Next: Reading Mail FAQ,  Prev: Customization FAQ,  Up: Frequently Asked Questions
  464.  
  465. Reading News
  466. ------------
  467.  
  468.    * Q3.1  How do I convert my kill files to score files?
  469.  
  470.      A kill-to-score translator was written by Ethan Bradford
  471.      <ethanb@ptolemy.astro.washington.edu>.  It is available from
  472.  
  473.      `http://baugi.ifi.uio.no/~larsi/ding-various/gnus-kill-to-score.el'.
  474.  
  475.    * Q3.2 My news server has a lot of groups, and killing groups is
  476.      painfully slow.
  477.  
  478.      Don't do that then.  The best way to get rid of groups that should
  479.      be dead is to edit your newsrc directly.  This problem will be
  480.      addressed in the near future.
  481.  
  482.    * Q3.3  How do I use an NNTP server with authentication?
  483.  
  484.      Put the following into your .gnus:
  485.            (add-hook 'nntp-server-opened-hook 'nntp-send-authinfo)
  486.  
  487.    * Q3.4  Not reading the first article.
  488.  
  489.      How do I avoid reading the first article when a group is selected?
  490.  
  491.        1. Use `RET' to select the group instead of `SPC'.
  492.  
  493.        2. `(setq gnus-auto-select first nil)'
  494.  
  495.        3. Luis Fernandes <elf@mailhost.ee.ryerson.ca>writes:
  496.           This is what I use...customize as necessary...
  497.  
  498.                ;;; Don't auto-select first article if reading sources, or archives or
  499.                ;;; jobs postings, etc. and just display the summary buffer
  500.                (add-hook 'gnus-select-group-hook
  501.                      (function
  502.                       (lambda ()
  503.                         (cond ((string-match "sources" gnus-newsgroup-name)
  504.                            (setq gnus-auto-select-first nil))
  505.                               ((string-match "jobs" gnus-newsgroup-name)
  506.                                (setq gnus-auto-select-first nil))
  507.                           ((string-match "comp\\.archives" gnus-newsgroup-name)
  508.                            (setq gnus-auto-select-first nil))
  509.                           ((string-match "reviews" gnus-newsgroup-name)
  510.                            (setq gnus-auto-select-first nil))
  511.                           ((string-match "announce" gnus-newsgroup-name)
  512.                            (setq gnus-auto-select-first nil))
  513.                           ((string-match "binaries" gnus-newsgroup-name)
  514.                            (setq gnus-auto-select-first nil))
  515.                           (t
  516.                            (setq gnus-auto-select-first t))))))
  517.  
  518.        4. Per Abrahamsen <abraham@dina.kvl.dk> writes:
  519.           Another possibility is to create an `all.binaries.all.SCORE'
  520.           file like this:
  521.  
  522.                ((local
  523.                  (gnus-auto-select-first nil)))
  524.  
  525.           and insert
  526.                    (setq gnus-auto-select-first t)
  527.  
  528.           in your `.gnus'.
  529.  
  530.  
  531.    * Q3.5  Why aren't BBDB known posters marked in the summary buffer?
  532.  
  533.      Brian Edmonds <edmonds@cs.ubc.ca> writes:
  534.      Due to changes in Gnus 5.0, `bbdb-gnus.el' no longer marks known
  535.      posters in the summary buffer.  An updated version, `gnus-bbdb.el'
  536.      is available at the locations listed below.  This package also
  537.      supports autofiling of incoming mail to folders specified in the
  538.      BBDB.  Extensive instructions are included as comments in the file.
  539.  
  540.      Send mail to `majordomo@edmonds.home.cs.ubc.ca' with the following
  541.      line in the body of the message: *get misc gnus-bbdb.el*.
  542.  
  543.      Or get it from the World Wide Web:
  544.      `http://www.cs.ubc.ca/spider/edmonds/gnus-bbdb.el'.
  545.  
  546. 
  547. File: gnus,  Node: Reading Mail FAQ,  Prev: Reading News FAQ,  Up: Frequently Asked Questions
  548.  
  549. Reading Mail
  550. ------------
  551.  
  552.    * Q4.1 What does the message "Buffer has changed on disk" mean in a
  553.      mail group?
  554.  
  555.      Your filter program should not deliver mail directly to your
  556.      folders, instead it should put the mail into spool files.  Gnus
  557.      will then move the mail safely from the spool files into the
  558.      folders.  This will eliminate the problem.  Look it up in the
  559.      manual, in the section entitled "Mail & Procmail".
  560.  
  561.    * Q4.2  How do you make articles un-expirable?
  562.  
  563.      I am using nnml to read news and have used
  564.      `gnus-auto-expirable-newsgroups' to automagically expire articles
  565.      in some groups (Gnus being one of them).  Sometimes there are
  566.      interesting articles in these groups that I want to keep.  Is
  567.      there any way of explicitly marking an article as un-expirable -
  568.      that is mark it as read but not expirable?
  569.  
  570.      Use `u', `!', `d' or `M-u' in the summary buffer. You just remove
  571.      the `E' mark by setting some other mark. It's not necessary to
  572.      tick the articles.
  573.  
  574.    * Q4.3  How do I delete bogus nnml: groups?
  575.  
  576.      My problem is that I have various mail (nnml) groups generated
  577.      while experimenting with Gnus. How do I remove them now? Setting
  578.      the level to 9 does not help. Also `gnus-group-check-bogus-groups'
  579.      does not recognize them.
  580.  
  581.      Removing mail groups is tricky at the moment. (It's on the to-do
  582.      list, though.) You basically have to kill the groups in Gnus, shut
  583.      down Gnus, edit the active file to exclude these groups, and
  584.      probably remove the nnml directories that contained these groups
  585.      as well. Then start Gnus back up again.
  586.  
  587.    * Q4.4  What happened to my new mail groups?
  588.  
  589.      I got new mail, but I have never seen the groups they should have
  590.      been placed in.
  591.  
  592.      They are probably there, but as zombies. Press `A z' to list
  593.      zombie groups, and then subscribe to the groups you want with `u'.
  594.      This is all documented quite nicely in the user's manual.
  595.  
  596.    * Q4.5  Not scoring mail groups
  597.  
  598.      How do you *totally* turn off scoring in mail groups?
  599.  
  600.      Use an nnbabyl:all.SCORE (or nnmh, or nnml, or whatever) file
  601.      containing:
  602.  
  603.           ((adapt ignore)
  604.            (local (gnus-use-scoring nil))
  605.            (exclude-files "all.SCORE"))
  606.  
  607.